home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacTech 1 to 12
/
MacTech-vol-1-12.toast
/
Source
/
MacTech® Magazine
/
Volume 06 - 1990
/
06.12 Dec 90
/
NeXT for Mac Code
/
RocketApp_main.m
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-03-15
|
251 b
|
15 lines
|
[
TEXT/QED1
]
/* The main program ( RocketApp_main.m ) */
#include <appkit/appkit.h>
#include <stdio.h>
int main(int argc, char * argv[])
{
id app;
app = [ Application new ];
[ app loadFromNibFile: "RocketApp.nib" ];
[ app run ];
[ app free ];
exit( 0 );
}